@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    width: 100%;
}

 .terms-box {
    max-width: 100%;
    
    
    
    padding: 60px 30px;
}

.terms-text {
    padding: 0 20px;
    height: 400px;
    font-size: 14px;
    font-weight: 500;
    
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #42459C;
    margin-top: 50px;
    margin-bottom: 20px;


} 
.terms-text::-webkit-scrollbar{
    width: 2px;
    background-color: #282828;
}
.terms-text::-webkit-scrollbar-thumb{
    background-color: #42459C;
}
.terms-text h2{
    text-transform: uppercase;
    text-align: center;
    margin-top: 40px;
}
.terms-text p{
    margin-top: 20px;
}
.terms-box h4{
    color: #42459C;
}

.button{
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
}
.btn{
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s linear;
    font-weight: 500;
    color: #fff;
}
.red-btn {
    background-color: #42459C;
}
.gray-btn {
    background-color: #282828;
}

.btn:hover{
    transform: scale(1.1);
}


